-
Notifications
You must be signed in to change notification settings - Fork 6
/
CHANGELOG
5198 lines (4726 loc) · 175 KB
/
CHANGELOG
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
ALPINE LINUX 3.17.0 RELEASED
We are pleased to announce the release of Alpine Linux 3.17.0, the first in the v3.17 stable series.
HIGHLIGHTS
bash 5.2
GCC 12
Kea 2.2
LLVM 15
OpenSSL 3.0
Perl 5.36
PostgreSQL 15
Node.js (lts) 18.12
Node.js (current) 19.1
Ceph 17.2
GNOME 43
Go 1.19
KDE Plasma 5.26
Rust 1.64
.NET 7.0.100
SIGNIFICANT CHANGES
OpenSSL 3.0 is now the default OpenSSL version. OpenSSL 1.1 is available via the openssl1.1-compat package.
Rust is now available on all supported architectures.
UPGRADE NOTES
As always, make sure to use apk upgrade --available when switching between major versions.
DEPRECATION NOTES
PHP 8.0 has been deprecated.
ISC Kea moved to main repository for long time support while ISC dhcp moved to community repository. Users of dhcpd are encouraged to migrate to Kea.
CHANGES
The full list of changes can be found in the wiki, git log and bug tracker.
CREDITS
Thanks to everyone sending patches, bug reports, new and updated aports, and to everyone helping with writing documentation, maintaining the infrastructure, or contributing in any other way!
Thanks to GIGABYTE, Linode, Fastly, IBM, Equinix Metal, vpsFree for providing us with hardware and hosting.
APORTS COMMIT CONTRIBUTORS
2cgc5h
3np
6543
Adam Jensen
Adam Saponara
Adam Thiede
Adrián Arroyo Calle
Aiden Grossman
Aleksei Nikiforov
Alex Denes
Alex Dowad
Alex McGrath
Alex Ryndin
Alex Xu (Hello71)
Alexander Brzoska
Alexander Mazuruk
Alexey Yerin
Andreas Kemnade
Andrei Jiroh Halili
Andrei Zavada
André Klitzing
Andy Hawkins
Andy Postnikov
Anjandev Momi
Antoine Martin
Anton Bambura
Antoni Aloy Torrens
Ariadne Conill
Arnavion
Aron Barath
Avis Orsetti
Bart Ribbers
Ben Westover
Bobby The Builder
Boris Faure
Bradford D. Boyle
Brian Vuyk
Caleb Connolly
Carlo Landmeter
Carmina16
ChemicalXandco
Chris Talbot
Christian Kohlschütter
Clayton Craft
Conrad Hoffmann
Consus
Daisuke Mizobuchi
Damian Kurek
Daniel Mizyrycki
Daniel Moch
Daniel Tobon
Daniele Parisi
Danny McClanahan
Dave Henderson
David Demelier
David Florness
David Heidelberg
Dekedro
Dermot Bradley
Devin Lin
Devin Stewart
Dhruvin Gandhi
Dmitry Zakharchenko
Dominika Liberda
Dominique Martinet
Drew DeVault
Duncan Bellamy
Dylan Van Assche
Edd Salkield
Elly Fong-Jones
Eloi Torrents
Emanuele Sorce
Eric Nemchik
Eric Roshan-Eisner
Fabian Affolter
Fiona Klute
FollieHiyuki
Francesco Camuffo
Francesco Colista
Frank Tributh
Gabriel Sanches
Galen Abell
Gavin Henry
Glenn Strauss
GreyXor
Grigory Kirillov
Guillaume Quintard
Guy Godfroy
Haelwenn (lanodan) Monnier
Hani Shawa
Henrik Grimler
Henrik Riomar
Holger Jaekel
Hugo Rodrigues
Hugo Wang
Ian Bashford
Ingo
Iskren Chernev
Iztok Fister Jr
J0WI
Jacob Panek
Jake Buchholz Göktürk
Jakob Hauser
Jakob Meier
Jakub Jirutka
Jakub Panek
Jan Jasper de Kroon
Jason Hall
Jeff Dickey
Jeremy Grosser
John Vogel
Jonas
Jonas Marklén
Jordan Christiansen
Jordan ERNST
JuniorJPDJ
Justin Berthault
Justin Klaassen
Kaarle Ritvanen
Kate
Kay Thomas
Kevin Daudt
Konstantin Kulikov
Krystian Chachuła
Lars Kellogg-Stedman
Laszlo Gombos
Lauren N. Liberda
Laurent Bercot
Lauri Tirkkonen
Leo
Leon Marz
Leonardo Arena
Luca Weiss
Lucas Ramage
Lucidiot
Maarten van Gompel
Magnus Sandin
Malte Voos
Marc Hassan
Marco Schröder
Marian Buschsieweke
Marino Pascual
Mark Pashmfouroush
Markus Kolb
Marten Ringwelski
Martijn Braam
Martin Thielecke
Martin Uddén
Marvin Preuss
Matthew T Hoare
Maxim Karasev
Michael Ekstrand
Michael Lyngbol
Michael Pirogov
Michael Truog
Michael Zimmermann
Michal Jirku
Michal Tvrznik
Michał Adamski
Michał Polański
Milan P. Stanić
Miles Alan
Minecrell
Mohammad Abdolirad
Natanael Copa
Nathan Rennie-Waldock
Newbyte
Ngô Ngọc Đức Huy
NickBug
Nico Schottelius
Nicolas Lorin
Noel Kuntze
Nulo
Oleg Titov
Oliver Smith
Olliver Schinagl
Otto Modinos
Pablo Correa Gómez
Patrick Gansterer
Paul Bredbury
Paul Spooren
Paulo Luna
Peter Shkenev
Peter van Dijk
Petr Fedchenkov
Philipp Arras
Pranjal Kole
Przemysław Romanik
QShen3
R4SAS
Ralf Rachinger
Rasmus Thomsen
Raymond Hackley
Risgit
Rob Blanckaert
Robert Adam
Robert Günzler
Rosie K Languet
Rudolf Polzer
Saarko
Saarko Sandomir
Saijin-Naib
Sam Whited
Sascha Brawer
Sashanoraa
Scott Robinson
Sean McAvoy
Sebastian Meyer
Sergey S
Simon Frankenberger
Simon Rupf
Simon Ser
Simon Zeni
Sodface
Stacy Harper
Stanislav Kholmanskikh
Steffen Nurpmeso
Stephen Abbene
Steve McMaster
Steven Honson
Stone Tickle
Sylvain Prat
Síle Ekaterin Liszka
Sören Tempel
TBK
Taner Tas
Thiago Perrotta
Thomas Deutsch
Thomas Faughnan
Thomas Kienlen
Thomas Liske
Tim Stanley
Timo Brasz
Timo Teräs
Timotej Lazar
Timothy Legge
Tom Tsagk
Tom Wieczorek
Tomio
Uli Roth
Umar Getagazov
Valery Ushakov
Wen Heping
Wesley van Tilburg
Will Sinatra
William Desportes
Wolf
Wolfgang Walther
Yann Autissier
Yo'av Moshe
Zach DeCook
Ziyao
alealexpro100
alice
alikates
ant
build@apk-groulx
crapStone
donoban
firefly-cpp
gay
guddaff
itd
j.r
james palmer
jenneron
jminer
jpdw34
knuxify
kpcyrd
kt programs
macmpi
messense
mio
misthios
mochaaP
nadvagauser
nibon7
omni
prspkt
psykose
ptrcnull
rubicon
skovati
takumin
techknowlogick
tetsumaki
tiotags
urain39
vin01
wener
xrs
Óliver García
Óliver García Albertos
ALPINE LINUX 3.16.3 RELEASED
The Alpine Linux project is pleased to announce the immediate availability of version 3.16.3 of its Alpine Linux operating system.
This is a bugfix release.
The full lists of changes can be found in the git log.
GIT SHORTLOG
6543 (1):
community/gitea: upgrade to 1.17.3
Andy Postnikov (14):
main/postgresql13: security upgrade to 13.8 - CVE-2022-2625
main/postgresql14: security upgrade to 14.5 - CVE-2022-2625
community/postgresql12: security upgrade to 12.12 - CVE-2022-2625
community/phpldapadmin: upgrade to 1.2.6.4
community/composer: upgrade to 2.4.1
community/drupal7: upgrade to 7.92
community/composer: upgrade to 2.4.2
community/php8: security upgrade to 8.0.24
community/php81: security upgrade to 8.1.11
community/php8: security upgrade to 8.0.25
community/php81: security upgrade to 8.1.12
community/php8-pecl-xhprof: upgrade to 2.3.8
community/php81-pecl-xhprof: upgrade to 2.3.8
community/konsole: remove stale patch from checksums
Anjandev Momi (1):
community/sxmo-utils: upgrade to 1.9.1
Antoine Martin (10):
community/dotnet6-runtime: security upgrade to 6.0.8
community/dotnet6-build: security upgrade to 6.0.108
community/dotnet6-build: fix RID bug
community/dotnet6-runtime: fix RID bug
community/dotnet6-build: upgrade to 6.0.109
community/dotnet6-runtie: upgrade to 6.0.9
community/dotnet6-build: security upgrade to 6.0.110
community/dotnet6-runtime: security upgrade to 6.0.10
community/dotnet6-build: upgrade to 6.0.111
community/dotnet6-runtime: upgrade to 6.0.11
Ariadne Conill (1):
main/alpine-baselayout: restore nsswitch.conf
Bart Ribbers (3):
community/kopeninghours: new aport
community/kosmindoormap: depend on kopeninghours
community/kde-release-service: upgrade to 22.04.3
Clayton Craft (1):
community/superd: upgrade to 0.6
Dmitry Zakharchenko (2):
community/py3-tzdata: new aport
community/py3-pendulum: new aport
Duncan Bellamy (2):
community/ceph: add py3-ceph-common sub package with core ceph module
community/rspamd: upgrade to 3.3
Galen Abell (1):
community/riot-web: security upgrade to 1.11.4
Guillaume Quintard (2):
main/varnish: upgrade to 7.1.1
main/varnish: upgrade to 7.1.2
Henrik Riomar (2):
main/intel-ucode: security upgrade to 20220809
community/vault: upgrade to 1.10.6
Holger Jaekel (2):
community/gdal: upgrade to 3.5.3
community/geos: upgrade to 3.10.3
J0WI (23):
community/java-postgresql-jdbc: security upgrade to 42.4.2
main/mariadb: security upgrade to 10.6.9
community/fdkaac: security upgrade to 1.0.3
main/dhcp: security upgrade to 4.4.3_p1
community/imagemagick6: security upgrade to 6.9.12.65
community/imagemagick: upgrade to 7.1.0.50
community/vault: security upgrade to 1.10.7
main/git: security upgrade to 2.36.3
main/mariadb: upgrade to 10.6.10
community/py3-django: security upgrade to 3.2.16
main/nginx: security upgrade to 1.22.1
community/geth: security upgrade to 1.10.22
main/darkhttpd: add secfixes
community/e2guardian: security upgrade to 5.4.5r
community/libreoffice: patch CVE-2022-3140
community/erlang: security upgrade to 24.3.4.6
main/py3-mako: add secfixes
community/libmodbus: security upgrade to 3.1.8
community/faad2: security upgrade to 2.10.1
community/py3-waitress: add secfixes
community/py3-bottle: security upgrade to 0.12.21
main/py3-tz: upgrade to 2022.2.1
main/py3-tz: upgrade to 2022.6
Jake Buchholz Göktürk (5):
community/runc: upgrade to 1.1.4
community/containerd: upgrade to 1.6.8
community/docker; security upgrade to 20.10.18
community/docker: security upgrade to 20.10.20
community/docker-cli-compose: security upgrade to 2.12.2
Jakub Jirutka (15):
main/ruby-bundler: fix --help when man is avail but -doc isn't installed
main/alpine-make-rootfs: upgrade to 0.6.1
community/open-vm-tools: security upgrade to 12.1.0
main/luajit: build with -O2 instead of -Os
community/docker-registry: add missing depend() to init script
community/knot-resolver: fix running w/ supervise-daemon, add provide dns
community/stunnel: disable test p02_require_cert on s390x (hangs)
community/alpine-make-vm-image: upgrade to 0.10.0
main/knot: upgrade to 3.1.9
main/nodejs: fix secfixes
community/linux-edge: enable CONFIG_NFT_OBJREF
main/linux-lts: enable missing nftables options
main/openldap: unify changes and patches for slapd.conf and slapd.ldif
main/openldap: fix problem with pidfile - service status crashed
main/openldap: fix invalid includes in slapd.conf
Jordan Christiansen (1):
community/acme-client: upgrade to 1.3.1
Kaarle Ritvanen (4):
community/zoneminder: fix various issues
community/zoneminder: fix init script
main/logrotate: subpackage for main syslog file
main/awall: upgrade to 1.12.1
Kevin Daudt (3):
community/zabbix: explicitly set PluginSocket for agent2
community/zabbix: include default plugin conf
community/zabbix: upgrade to 6.0.8
Konstantin Kulikov (4):
community/grafana-frontend: upgrade to 8.5.11
community/grafana: upgrade to 8.5.11
community/grafana-frontend: upgrade to 8.5.13
community/grafana: security upgrade to 8.5.13
Lauren N. Liberda (1):
community/riot-web: security upgrade to 1.11.8
Leonardo Arena (4):
community/nextcloud: upgrade to 24.0.5
community/nextcloud23: upgrade to 23.0.9
community/zabbix: upgrade to 6.0.9
main/protobuf-c: upgrade to 1.4.1
Marc Hassan (1):
main/nodejs: upgrade to 16.17.1
Michał Polański (2):
community/buildah: upgrade to 1.26.4
community/buildah: upgrade to 1.26.5
Milan P. Stanić (25):
community/linux-edge: upgrade to 5.19.1
community/linux-edge: remove edge4virt flavor, use linux-edge in VMs
main/haproxy: upgrade to 2.4.18
community/linux-edge: upgrade to 5.19.2
community/linux-edge: upgrade to 5.19.3
community/linux-edge: upgrade to 5.19.4
community/linux-edge: fix openssl in makedepends
community/linux-edge: upgrade to 5.19.6
community/linux-edge: upgrade to 5.19.7
community/linux-edge: upgrade to 5.19.8
community/linux-edge: upgrade to 5.19.9
community/linux-edge: remove provides/replaces linux-edeg4virt
community/linux-edge: upgrade to 5.19.10
community/linux-edge: upgrade to 5.19.11
community/linux-edge: upgrade to 5.19.12
community/linux-edge: upgrade to 6.0.0
community/linux-edge: add speakup patch
community/linux-edge: upgrade to 6.0.1
community/linux-edge: upgrade to 6.0.2
community/linux-edge: upgrade to 6.0.3
community/linux-edge: upgrade to 6.0.5
community/linux-edge: upgrade to 6.0.6
community/linux-edge: fix build on x86_64
community/linux-edge: upgrade to 6.0.7
community/linux-edge: upgrade to 6.0.8
Natanael Copa (138):
main/linux-lts: upgrade to 5.15.60
community/jool-modules-lts: rebuild against kernel 5.15.60-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.60-r0
community/rtpengine-lts: rebuild against kernel 5.15.60-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.60-r0
main/xtables-addons-lts: rebuild against kernel 5.15.60-r0
main/zfs-lts: rebuild against kernel 5.15.60-r0
main/linux-lts: upgrade to 5.15.61
community/jool-modules-lts: rebuild against kernel 5.15.61-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.61-r0
community/rtpengine-lts: rebuild against kernel 5.15.61-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.61-r0
main/xtables-addons-lts: rebuild against kernel 5.15.61-r0
main/zfs-lts: rebuild against kernel 5.15.61-r0
main/linux-lts: upgrade to 5.15.62
community/jool-modules-lts: rebuild against kernel 5.15.62-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.62-r0
community/rtpengine-lts: rebuild against kernel 5.15.62-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.62-r0
main/xtables-addons-lts: rebuild against kernel 5.15.62-r0
main/zfs-lts: rebuild against kernel 5.15.62-r0
main/linux-lts: backport patch for xen issue
community/jool-modules-lts: rebuild against kernel 5.15.62-r1
community/rtl8821ce-lts: rebuild against kernel 5.15.62-r1
community/rtpengine-lts: rebuild against kernel 5.15.62-r1
main/dahdi-linux-lts: rebuild against kernel 5.15.62-r1
main/xtables-addons-lts: rebuild against kernel 5.15.62-r1
main/zfs-lts: rebuild against kernel 5.15.62-r1
main/linux-lts: upgrade to 5.15.63
community/jool-modules-lts: rebuild against kernel 5.15.63-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.63-r0
community/rtpengine-lts: rebuild against kernel 5.15.63-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.63-r0
main/xtables-addons-lts: rebuild against kernel 5.15.63-r0
main/zfs-lts: rebuild against kernel 5.15.63-r0
main/linux-lts: upgrade to 5.15.64
community/jool-modules-lts: rebuild against kernel 5.15.64-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.64-r0
community/rtpengine-lts: rebuild against kernel 5.15.64-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.64-r0
main/xtables-addons-lts: rebuild against kernel 5.15.64-r0
main/zfs-lts: rebuild against kernel 5.15.64-r0
main/linux-lts: upgrade to 5.15.67
community/jool-modules-lts: rebuild against kernel 5.15.67-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.67-r0
community/rtpengine-lts: rebuild against kernel 5.15.67-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.67-r0
main/xtables-addons-lts: rebuild against kernel 5.15.67-r0
main/zfs-lts: rebuild against kernel 5.15.67-r0
main/linux-lts: upgrade to 5.15.68
community/jool-modules-lts: rebuild against kernel 5.15.68-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.68-r0
community/rtpengine-lts: rebuild against kernel 5.15.68-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.68-r0
main/xtables-addons-lts: rebuild against kernel 5.15.68-r0
main/zfs-lts: rebuild against kernel 5.15.68-r0
main/openldap: improve default slapd.ldif
main/linux-lts: upgrade to 5.15.69
community/jool-modules-lts: rebuild against kernel 5.15.69-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.69-r0
community/rtpengine-lts: rebuild against kernel 5.15.69-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.69-r0
main/xtables-addons-lts: rebuild against kernel 5.15.69-r0
main/zfs-lts: rebuild against kernel 5.15.69-r0
main/bind: security upgrade to 9.16.33
main/linux-lts: upgrade to 5.15.70
community/jool-modules-lts: rebuild against kernel 5.15.70-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.70-r0
community/rtpengine-lts: rebuild against kernel 5.15.70-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.70-r0
main/xtables-addons-lts: rebuild against kernel 5.15.70-r0
main/zfs-lts: rebuild against kernel 5.15.70-r0
main/linux-lts: upgrade to 5.15.71
community/jool-modules-lts: rebuild against kernel 5.15.71-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.71-r0
community/rtpengine-lts: rebuild against kernel 5.15.71-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.71-r0
main/xtables-addons-lts: rebuild against kernel 5.15.71-r0
main/zfs-lts: rebuild against kernel 5.15.71-r0
main/linux-lts: upgrade to 5.15.72
community/jool-modules-lts: rebuild against kernel 5.15.72-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.72-r0
community/rtpengine-lts: rebuild against kernel 5.15.72-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.72-r0
main/xtables-addons-lts: rebuild against kernel 5.15.72-r0
main/zfs-lts: rebuild against kernel 5.15.72-r0
main/linux-lts: upgrade to 5.15.73
community/jool-modules-lts: rebuild against kernel 5.15.73-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.73-r0
community/rtpengine-lts: rebuild against kernel 5.15.73-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.73-r0
main/xtables-addons-lts: rebuild against kernel 5.15.73-r0
main/zfs-lts: rebuild against kernel 5.15.73-r0
main/mqtt-exec: upgrade to 0.5
main/lua-mqtt-publish: upgrade to 0.4
main/aports-build: fix build error reporting
main/linux-lts: enable transparent hugepages for virt x86_64
main/linux-lts: upgrade to 5.15.75
community/jool-modules-lts: rebuild against kernel 5.15.75-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.75-r0
community/rtpengine-lts: rebuild against kernel 5.15.75-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.75-r0
main/xtables-addons-lts: rebuild against kernel 5.15.75-r0
main/zfs-lts: rebuild against kernel 5.15.75-r0
main/linux-lts: upgrade to 5.15.76
community/jool-modules-lts: rebuild against kernel 5.15.76-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.76-r0
community/rtpengine-lts: rebuild against kernel 5.15.76-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.76-r0
main/xtables-addons-lts: rebuild against kernel 5.15.76-r0
main/zfs-lts: rebuild against kernel 5.15.76-r0
main/linux-rpi: upgrade to 5.15.76
community/jool-modules-rpi: rebuild against kernel 5.15.76-r0
main/zfs-rpi: rebuild against kernel 5.15.76-r0
main/openssl3: upgrade to 3.0.7 (CVE-2022-3602, CVE-2022-3786)
main/openssl: upgrade to 1.1.1s
community/sudo: backport fix for CVE-2022-43995
main/linux-lts: enable CONFIG_IP_VS_MH for virt x86*
main/linux-lts: upgrade to 5.15.77
community/jool-modules-lts: rebuild against kernel 5.15.77-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.77-r0
community/rtpengine-lts: rebuild against kernel 5.15.77-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.77-r0
main/xtables-addons-lts: rebuild against kernel 5.15.77-r0
main/zfs-lts: rebuild against kernel 5.15.77-r0
main/alpine-conf: backport fix for /boot partition size
main/linux-lts: enable framebuffer console rotation
main/linux-lts: upgrade to 5.15.78
community/jool-modules-lts: rebuild against kernel 5.15.78-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.78-r0
community/rtpengine-lts: rebuild against kernel 5.15.78-r0
main/dahdi-linux-lts: rebuild against kernel 5.15.78-r0
main/xtables-addons-lts: rebuild against kernel 5.15.78-r0
main/zfs-lts: rebuild against kernel 5.15.78-r0
main/linux-rpi: upgrade to 5.15.78
community/jool-modules-rpi: rebuild against kernel 5.15.78-r0
main/zfs-rpi: rebuild against kernel 5.15.78-r0
===== release 3.16.3 =====
Newbyte (1):
community/karlender: upgrade to 0.6.1
NickBug (1):
community/consul-template fix typo error
Nicolas Lorin (1):
community/ruby-addressable: upgrade to 2.8.1
Oliver Smith (5):
community/pmbootstrap: upgrade to 1.46.0
community/pmbootstrap: upgrade to 1.47.0
community/pmbootstrap: upgrade to 1.47.1
community/pmbootstrap: upgrade to 1.48.0
community/pmbootstrap: upgrade to 1.49.0
Pablo Correa Gómez (25):
community/eog: upgrade to 42.3
community/evince: upgrade to 42.3
community/epiphany: upgrade to 42.4
community/gnome-calculator: upgrade to 42.2
community/gnome-calendar: upgrade to 42.2
community/gnome-console: upgrade to 42.2
community/gnome-shell-extensions: upgrade to 42.3
community/nautilus: upgrade to 42.2
community/simple-scan: upgrade to 42.1
community/gnome-bluetooth: upgrade to 42.2
community/gnome-desktop: upgrade to 42.4
community/gnome-initial-setup: upgrade to 42.2
community/gnome-remote-desktop: upgrade to 42.4
community/gnome-shell: upgrade to 42.4
community/mutter: upgrade to 42.4
community/xdg-desktop-portal-gnome: upgrade to 42.3
community/gnome-bluetooth: upgrade to 42.4
community/gnome-control-center: upgrade to 42.4
community/simple-scan: upgrade to 42.5
community/yelp: upgrade to 42.2
community/gnome-desktop: upgrade to 42.5
community/gnome-remote-desktop: upgrade to 42.5
community/gnome-shell: upgrade to 42.5
community/mutter: upgrade to 42.5
community/yelp-xsl: upgrade to 42.1
Peter Shkenev (1):
community/virtualbox-guest-additions: security upgrade to 6.1.36
Peter van Dijk (1):
community/pdns-recursor: upgrade to 4.6.3
Robert Scheck (1):
main/rsync: upgrade to 3.2.7
Sean McAvoy (1):
community/jenkins: security upgrade to 2.346.2
Simon Frankenberger (6):
community/openjdk13: upgrade to 13.0.12
community/openjdk11: upgrade to 11.0.16.1
community/openjdk17: upgrade to 17.0.4.1
community/openjdk17: upgrade to 17.0.5
community/openjdk11: upgrade to 11.0.17
community/openjdk11: backport JDK-8267908, fix s390x again
Steve McMaster (1):
community/suricata: upgrade to 6.0.8
Síle Ekaterin Liszka (1):
community/nheko: fix CVE-2022-39264
Sören Tempel (2):
community/go: upgrade to 1.18.7
main/mosquitto: backport upstream patch for SIGPIPE issue
Tim Stanley (1):
community/ebusd: upgrade to 22.4
Timo Teräs (2):
community/openjdk8: security upgrade to 3.24.0
main/shared-mime-info: remove sync call from trigger
donoban (1):
community/xorgxrdp: enable x86
macmpi (1):
community/acpid: upgrade to 2.0.34
omni (22):
community/tor: upgrade to 0.4.7.10
community/qutebrowser: depend on py3-pygments
community/qt5-qtwebengine: chromium security upgrade
community/dendrite: security upgrade to 0.9.8
main/expat: security upgrade to 2.4.9
community/knot-resolver: security upgrade to 5.5.3
community/consul: security upgrade to 1.12.5
main/strongswan: add mitigations for CVE-2022-40617
community/py3-gpep517: backport from edge
community/pgcli: add missing dependency on py3-pendulum
community/pgcli: add additional dependencies
main/linux-lts: upgrade to 5.15.74
main/dahdi-linux-lts: rebuild against kernel 5.15.74-r0
main/xtables-addons-lts: rebuild against kernel 5.15.74-r0
main/zfs-lts: rebuild against kernel 5.15.74-r0
community/jool-modules-lts: rebuild against kernel 5.15.74-r0
community/rtl8821ce-lts: rebuild against kernel 5.15.74-r0
community/rtpengine-lts: rebuild against kernel 5.15.74-r0
main/xen: add mitigations for XSA-412 & XSA-414
community/qt5-qtwebengine: chromium security upgrade
community/ansible-core: upgrade to 2.13.6
main/xen: upgrade to 4.16.2 & add mitigations for XSA-422
psykose (95):
community/qt5-qtdeclarative: reduce dbg size
community/qt6-qtbase: reduce dbg size
community/qt5-qtbase: reduce dbg size
community/kwin: reduce dbg size
main/mesa: reduce dbg size
community/qt5-qtbase: ..but without deleting the commit
main/libxml2: update secfixes
main/sqlite: update secfixes
community/chromium: upgrade to 102.0.5005.173
main/tzdata: upgrade to 2022b
main/tzdata: upgrade to 2022c
main/libxml2: fix CVE-2022-3209
community/firefox-esr: upgrade to 91.13.0
community/thunderbird: upgrade to 91.13.0
main/luajit: remove -msse4.2
main/mariadb: disable test-aes
main/mariadb: ..with the correct name
community/glib-networking: upgrade to 2.72.1
community/webkit2gtk: upgrade to 2.36.7
community/webkit2gtk-5.0: upgrade to 2.36.7
community/vectorscan: reduce -march level
community/libreswan: fix runscript
main/curl: patch CVE-2022-32252
main/curl: correct secfix typo
main/ssmtp: fix doc install location
community/go: upgrade to 1.18.6
testing/*: rebuild with go 1.18.6
community/*: rebuild with go 1.18.6
community/go: update secfixes
community/ginkgo: disable check on s390x
community/stunnel: fix sh syntax
main/redis: upgrade to 7.0.5
community/nodejs-current: upgrade to 18.9.1
main/rsync: upgrade to 3.2.5
community/chromium: upgrade to 102.0.5005.182
community/grpc-java: actually apply the patch
main/tiff: upgrade to 4.4.0
community/php81: disable tests for armv7
main/libxml2: fix secfix typo
main/dbus: upgrade to 1.14.4
community/*: rebuild against go 1.18.7
community/imagemagick: upgrade to 7.1.0.36
community/imagemagick: upgrade to 7.1.0.37
community/imagemagick: upgrade to 7.1.0.38
community/imagemagick: upgrade to 7.1.0.39
community/imagemagick: upgrade to 7.1.0.40
community/imagemagick: upgrade to 7.1.0.41
community/imagemagick: upgrade to 7.1.0.43
community/imagemagick: upgrade to 7.1.0.44
community/imagemagick: upgrade to 7.1.0.45
community/imagemagick: upgrade to 7.1.0.46
community/imagemagick: upgrade to 7.1.0.47
community/imagemagick: upgrade to 7.1.0.48
community/imagemagick: upgrade to 7.1.0.49
main/postfix: upgrade to 3.7.3
main/openssl3: security upgrade to 3.0.6
main/openssl3: downgrade to 3.0.5
community/netatalk: upgrade to 3.1.13
main/libxml2: mitigate cves
main/bcache-tools: add -dbg
community/poco: use system deps, place them in -dev
community/py3-django: fix checksums
main/darkhttpd: upgrade to 1.14
main/speex: upgrade to 1.2.1
community/thunderbird: upgrade to 91.13.1
main/protobuf: rebuild
main/expat: upgrade to 2.5.0
main/curl: security fixes
community/libtorrent-rasterbar: upgrade to 2.0.8
community/zsnes: try fix build
community/zsnes: try fix build pt2
community/zsnes: try fix build pt3
community/zsnes: fix c++ target name
main/py3-mako: upgrade to 1.2.1
community/py3-waitress: upgrade to 2.1.2
community/py3-waitress: fix provides
main/tzdata: upgrade to 2022d
main/tzdata: upgrade to 2022e
main/tzdata: upgrade to 2022f
main/perl-datetime-timezone: upgrade to 2.55
main/perl-datetime-timezone: upgrade to 2.56
community/sudo: upgrade to 1.9.11_p3
community/sudo: upgrade to 1.9.12
main/musl: backport relr patches
main/pixman: fix CVE-2022-44638
main/pixman: bump pkgrel
community/slony1: fix install dir
main/cyrus-sasl: enable httpform
community/py3-importlib-metadata: fix version
main/tzdata: fix zdump
community/libvirt: fix crash
main/graphviz: add gd loader
main/python3: upgrade to 3.10.8
community/python3-tkinter: upgrade to 3.10.8
community/xterm: upgrade to 375
ptrcnull (14):
community/spot: clean up alsa backend references
main/libnftnl: upgrade to 1.2.3
community/ruby-net-ldap: upgrade to 0.17.1
community/yash: upgrade to 2.53
community/py3-frozendict: upgrade to 2.3.4
community/stunnel: upgrade to 5.66
main/py3-mako: upgrade to 1.2.2
main/py3-mako: upgrade to 1.2.3
main/perl-datetime-timezone: upgrade to 2.53
main/perl-datetime-timezone: upgrade to 2.54
main/py3-tz: upgrade to 2022.4
community/suricata: upgrade to 6.0.6
community/suricata: update url
community/libhtp: upgrade to 0.5.41
wener (2):
community/grpc-java: enable aarch64
community/k3s: upgrade to 1.23.12.1
ALPINE LINUX 3.16.1 RELEASED
The Alpine Linux project is pleased to announce the immediate availability of version 3.16.2 of its Alpine Linux operating system.
This release includes various security fixes, including:
busybox CVE-2022-30065
openssl CVE-2022-2097
The full lists of changes can be found in the git log.
GIT SHORTLOG
6543 (2):
community/synapse: upgrade to 1.61.1
community/gitea: upgrade to v1.16.9
Andy Postnikov (28):
community/{php8,php81}: update provider priority
community/php8-pecl-event: upgrade to 3.0.7
community/php81-pecl-event: upgrade to 3.0.7
community/composer: upgrade to 2.3.6
community/drupal7: upgrade to 7.90
community/composer: upgrade to 2.3.7
community/php8-pecl-xdebug: upgrade to 3.1.5
community/php81-pecl-xdebug: upgrade to 3.1.5
community/php81: security upgrade to 8.1.7
community/php8: security upgrade to 8.0.20
community/php8-pecl-rdkafka: upgrade to 6.0.2
community/php81-pecl-rdkafka: upgrade to 6.0.2
main/postgresql14: upgrade to 14.4
community/php8-pecl-swoole: upgrade to 4.8.10
community/php81-pecl-swoole: upgrade to 4.8.10
main/nginx: upgrade modules
community/njs: upgrade to 0.7.5
community/php8-pecl-rdkafka: upgrade to 8.0.3
community/php81-pecl-rdkafka: upgrade to 6.0.3
community/composer: upgrade to 2.3.8
community/composer: upgrade to 2.3.9
community/php8: upgrade to 8.0.21
community/php81: upgrade to 8.1.8
community/php81-pecl-swoole: upgrade to 4.8.11
community/php8-pecl-swoole: upgrade to 4.8.11
community/composer: upgrade to 2.3.10
main/openldap: upgrade to 2.6.3
main/libwebp: upgrade to 1.2.3
Anjandev Momi (1):
community/nextcloud: upgrade to 24.0.1
Antoine Martin (4):
community/dotnet6-build: upgrade to 6.0.106
community/dotnet6-runtime: upgrade to 6.0.6
community/dotne6-build: upgrade to 6.0.107
community/dotne6-runtime: upgrade to 6.0.7
Bart Ribbers (7):
community/kde release service: upgrade to 22.04.1
community/pmbootstrap: upgrade to 1.44.0
main/gtk+3.0: fix commands in .post-install
community/gtk4.0: fix commands in .post-install
community/kde-release-service: upgrade to 22.04.2
community/blueman: fix checksums
community/blueman: fix build
Damian Kurek (1):
main/gptfdisk: Fix null dereference and enable tests
Dermot Bradley (1):
[3.16] community/cloud-init: upgrade to 22.2.2
Dominique Martinet (3):
main/gptfdisk: fix bad uuid generation error
community/networkmanager: upgrade to 1.38.2
main/dnsmasq: init: add extra setup command hook
Duncan Bellamy (2):
community/dovecot-fts-xapian: rebuild against dovecot 2.3.19
community/ceph: add patch for issue #13892
Francesco Colista (4):
community/bareos: fix pre-upgrade script
community/lua-resty-mail: moved from testing
community/lua-resty-postgres: moved from testing
community/lua-stacktraceplus: backported from edge
GreyXor (1):
main/redis: upgrade to 7.0.2
Henrik Riomar (1):
scripts/mkimg.standard.sh: add linux-firmware-none to the extended iso
J0WI (11):
main/dpkg: security upgrade to 1.21.8
community/nss: security upgrade to 3.78.1
main/cifs-utils: update secfixes
main/apache2: security upgrade to 2.4.54
main/pcre2: security upgrade to 10.40
main/ntfs-3g: security upgrade to 2022.5.17
main/openssl: security upgrade to 1.1.1p
community/knot-resolver: upgrade to 5.5.1
main/openssl: security upgrade to 1.1.1q
main/openssl: security upgrade to 3.0.5
main/gnupg: patch CVE-2022-34903
Jacob Panek (2):
community/caddy: fix listening with TLS
community/tailscale: add missing ip6tables dependency