diff options
-rw-r--r-- | documentation/migration-guides/release-notes-4.2.rst | 847 |
1 files changed, 828 insertions, 19 deletions
diff --git a/documentation/migration-guides/release-notes-4.2.rst b/documentation/migration-guides/release-notes-4.2.rst index a3e821cb4b..bf003c1a00 100644 --- a/documentation/migration-guides/release-notes-4.2.rst +++ b/documentation/migration-guides/release-notes-4.2.rst | |||
@@ -6,26 +6,51 @@ Release notes for 4.2 (mickledore) | |||
6 | New Features / Enhancements in 4.2 | 6 | New Features / Enhancements in 4.2 |
7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
8 | 8 | ||
9 | - Python 3.8 is the minimum Python version required on the build host. | 9 | - Linux kernel 6.1, glibc 2.37 and ~350 other recipe upgrades |
10 | For host distributions that do not provide it, this is included as part of the | 10 | |
11 | :term:`buildtools` tarball. | 11 | - Rust improvements: |
12 | |||
13 | - This release adds Cargo support on the target, and includes | ||
14 | automated QA tests for this functionality. | ||
15 | |||
16 | - It also supports checksums for Rust crates and makes | ||
17 | them mandatory for each crate in a recipe. | ||
18 | |||
19 | - New :ref:`ref-classes-cargo-update-recipe-crates` class to | ||
20 | enable updating :term:`SRC_URI` crate lists from ``Cargo.lock`` | ||
21 | |||
22 | - Enabled building Rust for baremetal targets | ||
23 | |||
24 | - You can now also easily select to build beta or nightly | ||
25 | versions of rust with a new :term:`RUST_CHANNEL` variable | ||
26 | (use at own risk) | ||
27 | |||
28 | - Support for local github repos in :term:`SRC_URI` as | ||
29 | replacements for cargo dependencies | ||
30 | |||
31 | - Use built-in rust targets for -native builds to save several | ||
32 | minutes building the Rust toolchain | ||
33 | |||
34 | - Python 3.8+ and GCC 8.0+ are now the minimum required versions on the build host | ||
12 | 35 | ||
13 | - BitBake in this release now supports a new ``addpylib`` directive to enable | 36 | - BitBake in this release now supports a new ``addpylib`` directive to enable |
14 | Python libraries within layers. For more information, | 37 | Python libraries within layers. For more information, |
15 | see :ref:`bitbake-user-manual/bitbake-user-manual-metadata:extending python library code`. | 38 | see :ref:`bitbake-user-manual/bitbake-user-manual-metadata:extending python library code`. |
16 | 39 | ||
17 | - BitBake has seen multiple internal changes that may impact | 40 | - BitBake has seen multiple internal changes that may improve |
18 | memory and disk usage as well as parsing time, in particular: | 41 | memory and disk usage as well as parsing time, in particular: |
19 | 42 | ||
20 | - BitBake's Cooker server is now multithreaded. | 43 | - BitBake's Cooker server is now multithreaded. |
21 | 44 | ||
45 | - Ctrl+C can now be used to interrupt some long-running operations | ||
46 | that previously ignored it. | ||
47 | |||
22 | - BitBake's cache has been extended to include more hash | 48 | - BitBake's cache has been extended to include more hash |
23 | debugging data, but has also been optimized to :yocto_git:`compress | 49 | debugging data, but has also been optimized to :yocto_git:`compress |
24 | cache data <https://git.yoctoproject.org/poky/commit/?h=mickledore&id=7d010055e2af3294e17db862f42664ca689a9356>`. | 50 | cache data <https://git.yoctoproject.org/poky/commit/?h=mickledore&id=7d010055e2af3294e17db862f42664ca689a9356>`. |
25 | 51 | ||
26 | - BitBake's Cooker server :yocto_git:`can now be pinged | 52 | - BitBake's UI will now ping the server regularly to ensure |
27 | </poky/commit/?h=mickledore&id=26f255da09>` | 53 | it is still alive. |
28 | from the UI. | ||
29 | 54 | ||
30 | - Architecture-specific enhancements: | 55 | - Architecture-specific enhancements: |
31 | 56 | ||
@@ -33,35 +58,92 @@ New Features / Enhancements in 4.2 | |||
33 | :wikipedia:`LoongArch <Loongson#LoongArch>` | 58 | :wikipedia:`LoongArch <Loongson#LoongArch>` |
34 | (``loongarch64``) architecture, though there is no testing for it yet. | 59 | (``loongarch64``) architecture, though there is no testing for it yet. |
35 | 60 | ||
61 | - New ``x86-64-v3`` tunes (AVX, AVX2, BMI1, BMI2, F16C, FMA, LZCNT, MOVBE, XSAVE) | ||
62 | |||
63 | - go: add support to build on ppc64le | ||
64 | - rust: rustfmt now working and installed for riscv32 | ||
65 | - libpng: enable NEON for aarch64 to enensure consistency with arm32. | ||
66 | - baremetal-helloworld: Enable x86 and x86-64 ports | ||
67 | |||
36 | - Kernel-related enhancements: | 68 | - Kernel-related enhancements: |
37 | 69 | ||
70 | - Added some support for building 6.2/6.3-rc kernels | ||
71 | - linux-yocto-dev: mark as compatible with qemuarm64 and qemuarmv5 | ||
72 | - Add kernel specific OBJCOPY to help switching toolchains cleanly for kernel build between gcc and clang | ||
73 | |||
74 | - New core recipes: | ||
75 | |||
76 | - ``debugedit`` | ||
77 | - ``gtk4`` (import from meta-gnome) | ||
78 | - ``gcr``: add recipe for gcr-4 | ||
79 | - ``graphene`` (import from meta-oe) | ||
80 | - ``libc-test`` | ||
81 | - ``libportal`` (import from meta-gnome) | ||
82 | - ``libslirp`` | ||
83 | - ``libtest-fatal-perl`` | ||
84 | - ``libtest-warnings-perl`` (import from meta-perl) | ||
85 | - ``libtry-tiny-perl`` | ||
86 | - ``python3-build`` | ||
87 | - ``python3-pyproject-hooks`` | ||
88 | - ``python3-hatch-fancy-pypi-readme`` | ||
89 | - ``python3-unittest-automake`` | ||
90 | |||
38 | - QEMU/runqemu enhancements: | 91 | - QEMU/runqemu enhancements: |
39 | 92 | ||
93 | - Set ``QB_SMP`` with ?= to make it easier to modify | ||
94 | - Set ``QB_CPU`` with ?= to make it easier to modify (x86 configuration only) | ||
95 | - New ``QB_NFSROOTFS_EXTRA_OPT`` to allow extra options to be appended to the nfs rootfs options in kernel boot args, e.g. ``"wsize=4096,rsize=4096"`` | ||
96 | - New ``QB_SETUP_CMD`` and ``QB_CLEANUP_CMD`` to enable running custom shell setup and cleanup commands before and after QEMU. | ||
97 | - ``QB_DEFAULT_KERNEL`` now defaults to pick the bundled initramfs kernel image if the Linux kernel image is generated with :term:`INITRAMFS_IMAGE_BUNDLE` set to "1" | ||
98 | - Split out the QEMU guest agent to its own ``qemu-guest-agent`` package | ||
99 | - runqemu: new "guestagent" option to enable communication with the guest agent | ||
100 | - runqemu: respect :term:`IMAGE_LINK_NAME` when searching for image | ||
101 | |||
40 | - Image-related enhancements: | 102 | - Image-related enhancements: |
41 | 103 | ||
42 | - New variables: | 104 | - Add 7-Zip support in image conversion types (``7zip``) |
105 | - New :term:`IMAGE_MACHINE_SUFFIX` variable to allow easily removing machine name suffix from image file names | ||
43 | 106 | ||
44 | - :term:`VOLATILE_TMP_DIR` allows to specify | 107 | - wic Image Creator enhancements: |
45 | whether ``/tmp`` should be on persistent storage | ||
46 | or in RAM. | ||
47 | 108 | ||
48 | - Rust improvements: | 109 | - bootimg-efi: add support for directly loading Linux kernel UEFI stub |
110 | - bootimg-efi: implement --include-path | ||
111 | - Allow usage of fstype=none to specify an unformatted partition | ||
112 | - Implement repeatable disk identifiers based on SOURCE_DATE_EPOCH | ||
49 | 113 | ||
50 | - This release adds Cargo support on the target, and includes | 114 | - FIT image related improvements: |
51 | automated QA tests for this functionality. | ||
52 | 115 | ||
53 | - It also supports checksums for Rust crates and makes | 116 | - FIT image signing support has been reworked to remove interdependencies and make it more easily extensible |
54 | them mandatory for each crate in a recipe. | 117 | - Skip FDT section creation for applicable symlinks to avoid the same dtb being duplicated |
118 | - New :term:`FIT_CONF_DEFAULT_DTB` variable to enable selecting default dtb when multiple dtbs exist | ||
119 | |||
120 | - SDK-related improvements: | ||
121 | |||
122 | - Extended the following recipes to nativesdk: | ||
123 | |||
124 | - ``bc`` | ||
125 | - ``gi-docgen`` | ||
126 | - ``gperf`` | ||
127 | - ``python3-iniconfig`` | ||
128 | - ``python3-atomicwrites`` | ||
129 | - ``python3-markdown`` | ||
130 | - ``python3-smartypants`` | ||
131 | - ``python3-typogrify`` | ||
132 | - ``ruby`` | ||
133 | - ``unifdef`` | ||
134 | |||
135 | - New :term:`SDK_ZIP_OPTIONS` variable to enable passing additional options to the zip command when preparing the SDK zip archive | ||
136 | - New Rust SDK target packagegroup (packagegroup-rust-sdk-target) | ||
55 | 137 | ||
56 | - Testing: | 138 | - Testing: |
57 | 139 | ||
58 | - The ptest images have changed structure in this release. The | 140 | - The ptest images have changed structure in this release. The |
59 | underlying ``core-image-ptest`` recipe now uses :term:`BBCLASSEXTEND` to | 141 | underlying ``core-image-ptest`` recipe now uses :term:`BBCLASSEXTEND` to |
60 | create a variant for each ptest enabled recipe in OE-Core. | 142 | create a variant for each ptest enabled recipe in OE-Core. |
61 | 143 | ||
62 | For example, this means that ``core-image-ptest-bzip2``, | 144 | For example, this means that ``core-image-ptest-bzip2``, |
63 | ``core-image-ptest-lttng-tools`` and many more image targets now exist | 145 | ``core-image-ptest-lttng-tools`` and many more image targets now exist |
64 | and can be built/tested individually. | 146 | and can be built/tested individually. |
65 | 147 | ||
66 | The ``core-image-ptest-all`` and ``core-image-ptest-fast`` targets are now | 148 | The ``core-image-ptest-all`` and ``core-image-ptest-fast`` targets are now |
67 | wrappers that target groups of individual images and means that the tests | 149 | wrappers that target groups of individual images and means that the tests |
@@ -83,9 +165,736 @@ New Features / Enhancements in 4.2 | |||
83 | - This release adds support for parallel ptest execution with a ptest per image. | 165 | - This release adds support for parallel ptest execution with a ptest per image. |
84 | This takes ptest execution time from 3.5 hours to around 45 minutes on the autobuilder. | 166 | This takes ptest execution time from 3.5 hours to around 45 minutes on the autobuilder. |
85 | 167 | ||
168 | - Basic Rust compile/run and cargo tests | ||
169 | |||
170 | - New ``python3-unittest-automake`` recipe which provides modules for pytest | ||
171 | and unittest to adjust their output to automake-style for easier integration | ||
172 | with the ptest system. | ||
173 | |||
174 | - ptest support added to ``bc``, ``cpio`` and ``gnutls``, and fixes made to | ||
175 | ptests in numerous other recipes. | ||
176 | |||
177 | - ``ptest-runner`` now adds a non-root "ptest" user for tests to run as | ||
178 | |||
179 | - resulttool: add a --list-ptest option to the log subcommand to list ptest names | ||
180 | in a results file | ||
181 | |||
182 | - resulttool: regression: add metadata filtering for oeselftest | ||
183 | |||
184 | |||
185 | - New :term:`PACKAGECONFIG` options in the following recipes: | ||
186 | |||
187 | - ``at-spi2-core`` | ||
188 | - ``base-passwd`` | ||
189 | - ``cronie`` | ||
190 | - ``cups`` | ||
191 | - ``cups`` | ||
192 | - ``curl`` | ||
193 | - ``file`` | ||
194 | - ``gstreamer1.0-plugins-good`` | ||
195 | - ``gtk+3`` | ||
196 | - ``iproute2`` | ||
197 | - ``libsdl2`` | ||
198 | - ``libtiff`` | ||
199 | - ``llvm`` | ||
200 | - ``mesa`` | ||
201 | - ``psmisc`` | ||
202 | - ``qemu`` | ||
203 | - ``sudo`` | ||
204 | - ``systemd`` | ||
205 | - ``tiff`` | ||
206 | - ``util-linux`` | ||
207 | |||
208 | - Extended the following recipes to native: | ||
209 | |||
210 | - ``iso-codes`` | ||
211 | - ``libxkbcommon`` | ||
212 | - ``p11-kit`` | ||
213 | - ``python3-atomicwrites`` | ||
214 | - ``python3-dbusmock`` | ||
215 | - ``python3-iniconfig`` | ||
216 | - ``xkeyboard-config`` | ||
217 | |||
218 | - Utility script changes: | ||
219 | |||
220 | - devtool: ignore patch-fuzz errors when extracting source in order to enable fixing fuzz issues | ||
221 | - oe-setup-layers: Make efficiently idempotent | ||
222 | - oe-setup-layers: print a note about submodules if present | ||
223 | - New buildstats-summary script to show a summary of the buildstats data | ||
224 | - report-error: catch Nothing PROVIDES error | ||
225 | - combo-layer: add sync-revs command | ||
226 | - scripts: convert-overrides: Allow command-line customizations | ||
227 | |||
228 | - bitbake-layers improvements: | ||
229 | |||
230 | - layerindex-fetch: checkout layer(s) branch when clone exists | ||
231 | - create: add -a/--add-layer option to add layer to bblayers.conf after creating layer | ||
232 | - show-layers: improve output layout | ||
233 | |||
234 | - Other BitBake improvements: | ||
235 | |||
236 | - Inline python snippets can now include dictionary expressions | ||
237 | - Evaluate the value of export/unexport/network flags so that they can be reset to "0" | ||
238 | - Make :term:`EXCLUDE_FROM_WORLD` boolean so that it can be reset to "0" | ||
239 | - Support int values in bb.utils.to_boolean() in addition to strings | ||
240 | - bitbake-getvar: Add a quiet command line argument | ||
241 | - Allow the '@' character in variable flag names | ||
242 | - Python library code will now be included when calculating task hashes | ||
243 | - fetch2/npmsw: add more short forms for git operations | ||
244 | - Display a warning when ``SRCREV = "${AUTOREV}"`` is set too late to be effective | ||
245 | - Display all missing :term:`SRC_URI` checksums at once | ||
246 | - Improve error message for a missing multiconfig | ||
247 | - Switch to a new :term:`BB_CACHEDIR` variable for codeparser cache location | ||
248 | - Mechanism introduced to reduce the codeparser cache unnecessarily growing in size | ||
249 | |||
250 | - Packaging changes: | ||
251 | |||
252 | - rng-tools is no longer recommended by openssh, and the rng-tools service files have been split out to their own package | ||
253 | - linux-firmware: split rtl8761 and amdgpu firmware | ||
254 | - linux-firmware: add new fw file to ${PN}-qcom-adreno-a530 | ||
255 | - iproute2: separate routel and add python dependency | ||
256 | - xinetd: move xconv.pl script to separate package | ||
257 | - perf: Enable debug/source packaging | ||
258 | |||
86 | - Miscellaneous changes: | 259 | - Miscellaneous changes: |
87 | 260 | ||
88 | - Supporting 64 bit dates on 32 bit platforms: several packages have been | 261 | - Supporting 64 bit dates on 32 bit platforms: several packages have been |
89 | updated to pass Y2038 tests. | 262 | updated to pass Y2038 tests, and a QA check for 32 bit time and file |
263 | offset functions has been added (default off) | ||
264 | |||
265 | - Patch fuzz/Upstream-Status checking has been reworked: | ||
266 | - Upstream-Status checking is now configurable from :term:`WARN_QA`/:term:`ERROR_QA` (``patch-status-core``) | ||
267 | - Can now be enabled for non-core layers (``patch-status-noncore``) | ||
268 | - ``patch-fuzz`` is now in :term:`ERROR_QA` by default, and actually stops the build | ||
90 | 269 | ||
91 | - Many packages were updated to add large file support. | 270 | - Many packages were updated to add large file support. |
271 | |||
272 | - New :term:`VOLATILE_TMP_DIR` variable allows to specify whether ``/tmp`` | ||
273 | should be on persistent storage or in RAM. | ||
274 | |||
275 | - vulkan-loader: Allow headless targets to build the loader | ||
276 | - dhcpcd: fix to work with systemd | ||
277 | - u-boot: Add /boot to :term:`SYSROOT_DIRS` to allow boot files to be used by other recipes | ||
278 | - linux-firmware: don't put the firmware into the sysroot | ||
279 | - cups: add :term:`PACKAGECONFIG` to control web interface and default to off | ||
280 | - buildtools-tarball: export certificates to python and curl | ||
281 | - yocto-check-layer: Allow OE-Core to be tested | ||
282 | - yocto-check-layer: check for patch file upstream status | ||
283 | - boost: enable building Boost.URL library | ||
284 | - native: Drop special variable handling | ||
285 | - poky: make it easier to set :term:`INIT_MANAGER` from local.conf | ||
286 | - create-spdx: Add support for custom Annotations | ||
287 | - create-spdx: Report downloads as separate packages | ||
288 | - create-spdx: Removed the top-level image SPDX file and the JSON index file from :term:`DEPLOYDIR` to avoid confusion | ||
289 | - os-release: replace ``DISTRO_CODENAME`` with ``VERSION_CODENAME`` (still set from :term:`DISTRO_CODENAME`) | ||
290 | - weston: Add kiosk shell | ||
291 | - overlayfs: Allow unused mount points | ||
292 | - sstatesig: emit more helpful error message when not finding sstate manifest | ||
293 | - pypi.bbclass: Set :term:`SRC_URI` downloadfilename with an optional prefix | ||
294 | - poky-bleeding: Update and rework | ||
295 | - package.bbclass: check if package names conflict via PKG:${PN} override in do_package | ||
296 | - cve-update-nvd2-native: new NVD CVE database fetcher using the 2.0 API | ||
297 | - mirrors.bbclass: use shallow tarball for binutils-native/nativesdk-binutils | ||
298 | - meta/conf: move default configuration templates into meta/conf/templates/default | ||
299 | - binutils: Enable --enable-new-dtags as per many Linux distributions | ||
300 | - base-files: Drop localhost.localdomain from hosts file as per many Linux distributions | ||
301 | - packagegroup-core-boot: make init-ifupdown package a recommendation | ||
302 | |||
303 | |||
304 | Known Issues in 4.2 | ||
305 | ~~~~~~~~~~~~~~~~~~~ | ||
306 | |||
307 | |||
308 | Recipe License changes in 4.2 | ||
309 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
310 | |||
311 | The following corrections have been made to the :term:`LICENSE` values set by recipes: | ||
312 | |||
313 | - curl: set :term:`LICENSE` appropriately to "curl" as it is a special derivative of the MIT/X license, not exactly that license. | ||
314 | - libgit2: added Zlib, ISC, LGPL-2.1-or-later and CC0-1.0 to :term:`LICENSE` covering portions of the included code. | ||
315 | - linux-firmware: set package :term:`LICENSE` appropriately for all qcom packages | ||
316 | |||
317 | |||
318 | |||
319 | Security Fixes in 4.2 | ||
320 | ~~~~~~~~~~~~~~~~~~~~~ | ||
321 | |||
322 | - binutils: :cve:`2022-4285`, :cve:`2023-25586` | ||
323 | - curl: :cve:`2022-32221`, :cve:`2022-35260`, :cve:`2022-42915`, :cve:`2022-42916` | ||
324 | - epiphany: :cve:`2023-26081` | ||
325 | - expat: :cve:`2022-43680` | ||
326 | - ffmpeg: :cve:`2022-3964`, :cve:`2022-3965` | ||
327 | - git: :cve:`2022-39260`, :cve:`2022-41903`, :cve:`2022-23521`, :cve:`2022-41953` (ignored) | ||
328 | - glibc: :cve:`2023-25139` (ignored) | ||
329 | - go: :cve:`2023-2453` | ||
330 | - grub2: :cve:`2022-2601`, :cve:`2022-3775`, :cve:`2022-28736` | ||
331 | - inetutils: :cve:`2019-0053` | ||
332 | - less: :cve:`2022-46663` | ||
333 | - libarchive: :cve:`2022-36227` | ||
334 | - libinput: :cve:`2022-1215` | ||
335 | - libpam: :cve:`2022-28321` | ||
336 | - libpng: :cve:`2019-6129` | ||
337 | - libx11: :cve:`2022-3554` | ||
338 | - openssh: :cve:`2023-28531` | ||
339 | - openssl: :cve:`2022-3358`, :cve:`2022-3786`, :cve:`2022-3602`, :cve:`2022-3996`, :cve:`2023-0286`, :cve:`2022-4304`, :cve:`2022-4203`, :cve:`2023-0215`, :cve:`2022-4450`, :cve:`2023-0216`, :cve:`2023-0217`, :cve:`2023-0401`, :cve:`2023-0464` | ||
340 | - ppp: :cve:`2022-4603` | ||
341 | - python3-cryptography{-vectors}: :cve:`2022-3602`, :cve:`2022-3786`, :cve:`2023-23931` | ||
342 | - python3: :cve:`2022-37460` | ||
343 | - qemu: :cve:`2022-3165` | ||
344 | - rust: :cve:`2022-46176` | ||
345 | - rxvt-unicode: :cve:`2022-4170` | ||
346 | - shadow: :cve:`2016-15024` (ignored) | ||
347 | - sudo: :cve:`2022-43995` | ||
348 | - systemd: :cve:`2022-4415` (ignored) | ||
349 | - tar: :cve:`2022-48303` | ||
350 | - tiff: :cve:`2022-3599`, :cve:`2022-3597`, :cve:`2022-3626`, :cve:`2022-3627`, :cve:`2022-3570`, :cve:`2022-3598`, :cve:`2022-3970`, :cve:`2022-48281` | ||
351 | - vim: :cve:`2022-3352`, :cve:`2022-4141`, :cve:`2023-0049`, :cve:`2023-0051`, :cve:`2023-0054`, :cve:`2023-0288`, :cve:`2023-1127`, :cve:`2023-1170`, :cve:`2023-1175`, :cve:`2023-1127`, :cve:`2023-1170`, :cve:`2023-1175`, :cve:`2023-1264`, :cve:`2023-1355`, :cve:`2023-0433`, :cve:`2022-47024`, :cve:`2022-3705` | ||
352 | - xdg-utils: :cve:`2022-4055` | ||
353 | - xserver-xorg: :cve:`2022-3550`, :cve:`2022-3551`, :cve:`2023-0494`, :cve:`2022-3553` (ignored) | ||
354 | |||
355 | |||
356 | Recipe Upgrades in 4.2 | ||
357 | ~~~~~~~~~~~~~~~~~~~~~~ | ||
358 | |||
359 | - acpid: upgrade 2.0.33 -> 2.0.34 | ||
360 | - adwaita-icon-theme: update 42.0 -> 43 | ||
361 | - alsa-lib: upgrade 1.2.7.2 -> 1.2.8 | ||
362 | - alsa-ucm-conf: upgrade 1.2.7.2 -> 1.2.8 | ||
363 | - alsa-utils: upgrade 1.2.7 -> 1.2.8 | ||
364 | - apr: update 1.7.0 -> 1.7.2 | ||
365 | - apr-util: update 1.6.1 -> 1.6.3 | ||
366 | - argp-standalone: replace with a maintained fork | ||
367 | - at-spi2-core: upgrade 2.44.1 -> 2.46.0 | ||
368 | - autoconf-archive: upgrade 2022.09.03 -> 2023.02.20 | ||
369 | - babeltrace: upgrade 1.5.8 -> 1.5.11 | ||
370 | - base-passwd: Update to 3.6.1 | ||
371 | - bash: update 5.1.16 -> 5.2.15 | ||
372 | - bind: upgrade 9.18.7 -> 9.18.12 | ||
373 | - binutils: Upgrade to 2.40 release | ||
374 | - bluez: update 5.65 -> 5.66 | ||
375 | - boost-build-native: update 1.80.0 -> 1.81.0 | ||
376 | - boost: upgrade 1.80.0 -> 1.81.0 | ||
377 | - btrfs-tools: upgrade 5.19.1 -> 6.1.3 | ||
378 | - busybox: 1.35.0 -> 1.36.0 | ||
379 | - ccache: upgrade 4.6.3 -> 4.7.4 | ||
380 | - cmake: update 3.24.0 -> 3.25.2 | ||
381 | - cracklib: upgrade to v2.9.10 | ||
382 | - curl: upgrade 7.86.0 -> 8.0.1 | ||
383 | - dbus: upgrade 1.14.0 -> 1.14.6 | ||
384 | - diffoscope: upgrade 221 -> 236 | ||
385 | - diffstat: upgrade 1.64 -> 1.65 | ||
386 | - diffutils: update 3.8 -> 3.9 | ||
387 | - dos2unix: upgrade 7.4.3 -> 7.4.4 | ||
388 | - dpkg: update 1.21.9 -> 1.21.21 | ||
389 | - dropbear: upgrade 2022.82 -> 2022.83 | ||
390 | - dtc: upgrade 1.6.1 -> 1.7.0 | ||
391 | - e2fsprogs: upgrade 1.46.5 -> 1.47.0 | ||
392 | - ed: upgrade 1.18 -> 1.19 | ||
393 | - elfutils: update 0.187 -> 0.188 | ||
394 | - ell: upgrade 0.53 -> 0.56 | ||
395 | - enchant2: upgrade 2.3.3 -> 2.3.4 | ||
396 | - encodings: update 1.0.6 -> 1.0.7 | ||
397 | - epiphany: update 42.4 -> 43.1 | ||
398 | - ethtool: upgrade 5.19 -> 6.2 | ||
399 | - expat: upgrade to 2.5.0 | ||
400 | - ffmpeg: upgrade 5.1.1 -> 5.1.2 | ||
401 | - file: upgrade 5.43 -> 5.44 | ||
402 | - flac: update 1.4.0 -> 1.4.2 | ||
403 | - font-alias: update 1.0.4 -> 1.0.5 | ||
404 | - fontconfig: upgrade 2.14.0 -> 2.14.2 | ||
405 | - font-util: upgrade 1.3.3 -> 1.4.0 | ||
406 | - freetype: update 2.12.1 -> 2.13.0 | ||
407 | - gawk: update 5.1.1 -> 5.2.1 | ||
408 | - gcr3: update 3.40.0 -> 3.41.1 | ||
409 | - gcr: rename gcr -> gcr3 | ||
410 | - gdb: Upgrade to 13.1 | ||
411 | - gdk-pixbuf: upgrade 2.42.9 -> 2.42.10 | ||
412 | - gettext: update 0.21 -> 0.21.1 | ||
413 | - ghostscript: update 9.56.1 -> 10.0.0 | ||
414 | - gi-docgen: upgrade 2022.1 -> 2023.1 | ||
415 | - git: upgrade 2.37.3 -> 2.39.2 | ||
416 | - glib-2.0: update 2.72.3 -> 2.74.6 | ||
417 | - glibc: upgrade to 2.37 release + stable updates | ||
418 | - glib-networking: update 2.72.2 -> 2.74.0 | ||
419 | - glslang: upgrade 1.3.236.0 -> 1.3.239.0 | ||
420 | - gnu-config: upgrade to latest revision | ||
421 | - gnupg: upgrade 2.3.7 -> 2.4.0 | ||
422 | - gnutls: upgrade 3.7.7 -> 3.8.0 | ||
423 | - gobject-introspection: upgrade 1.72.0 -> 1.74.0 | ||
424 | - go: update 1.19 -> 1.20.1 | ||
425 | - grep: update 3.7 -> 3.10 | ||
426 | - gsettings-desktop-schemas: upgrade 42.0 -> 43.0 | ||
427 | - gstreamer1.0: upgrade 1.20.3 -> 1.22.0 | ||
428 | - gtk+3: upgrade 3.24.34 -> 3.24.36 | ||
429 | - gtk4: update 4.8.2 -> 4.10.0 | ||
430 | - harfbuzz: upgrade 5.1.0 -> 7.1.0 | ||
431 | - hdparm: update 9.64 -> 9.65 | ||
432 | - help2man: upgrade 1.49.2 -> 1.49.3 | ||
433 | - icu: update 71.1 -> 72-1 | ||
434 | - ifupdown: upgrade 0.8.37 -> 0.8.41 | ||
435 | - igt-gpu-tools: upgrade 1.26 -> 1.27.1 | ||
436 | - inetutils: upgrade 2.3 -> 2.4 | ||
437 | - init-system-helpers: upgrade 1.64 -> 1.65.2 | ||
438 | - iproute2: upgrade 5.19.0 -> 6.2.0 | ||
439 | - iptables: update 1.8.8 -> 1.8.9 | ||
440 | - iputils: update to 20221126 | ||
441 | - iso-codes: upgrade 4.11.0 -> 4.13.0 | ||
442 | - jquery: upgrade 3.6.0 -> 3.6.3 | ||
443 | - kexec-tools: upgrade 2.0.25 -> 2.0.26 | ||
444 | - kmscube: upgrade to latest revision | ||
445 | - libarchive: upgrade 3.6.1 -> 3.6.2 | ||
446 | - libbsd: upgrade 0.11.6 -> 0.11.7 | ||
447 | - libcap: upgrade 2.65 -> 2.67 | ||
448 | - libdnf: update 0.69.0 -> 0.70.0 | ||
449 | - libdrm: upgrade 2.4.113 -> 2.4.115 | ||
450 | - libedit: upgrade 20210910-3.1 -> 20221030-3.1 | ||
451 | - libepoxy: update 1.5.9 -> 1.5.10 | ||
452 | - libffi: upgrade 3.4.2 -> 3.4.4 | ||
453 | - libfontenc: upgrade 1.1.6 -> 1.1.7 | ||
454 | - libgit2: upgrade 1.5.0 -> 1.6.3 | ||
455 | - libgpg-error: update 1.45 -> 1.46 | ||
456 | - libhandy: update 1.6.3 -> 1.8.1 | ||
457 | - libical: upgrade 3.0.14 -> 3.0.16 | ||
458 | - libice: update 1.0.10 -> 1.1.1 | ||
459 | - libidn2: upgrade 2.3.3 -> 2.3.4 | ||
460 | - libinput: upgrade 1.19.4 -> 1.22.1 | ||
461 | - libjpeg-turbo: upgrade 2.1.4 -> 2.1.5.1 | ||
462 | - libksba: upgrade 1.6.0 -> 1.6.3 | ||
463 | - libmicrohttpd: upgrade 0.9.75 -> 0.9.76 | ||
464 | - libmodule-build-perl: update 0.4231 -> 0.4232 | ||
465 | - libmpc: upgrade 1.2.1 -> 1.3.1 | ||
466 | - libnewt: update 0.52.21 -> 0.52.23 | ||
467 | - libnotify: upgrade 0.8.1 -> 0.8.2 | ||
468 | - libpcap: upgrade 1.10.1 -> 1.10.3 | ||
469 | - libpciaccess: update 0.16 -> 0.17 | ||
470 | - libpcre2: upgrade 10.40 -> 10.42 | ||
471 | - libpipeline: upgrade 1.5.6 -> 1.5.7 | ||
472 | - libpng: upgrade 1.6.38 -> 1.6.39 | ||
473 | - libpsl: upgrade 0.21.1 -> 0.21.2 | ||
474 | - librepo: upgrade 1.14.5 -> 1.15.1 | ||
475 | - libsdl2: upgrade 2.24.1 -> 2.26.3 | ||
476 | - libsm: 1.2.3 > 1.2.4 | ||
477 | - libsndfile1: upgrade 1.1.0 -> 1.2.0 | ||
478 | - libsolv: upgrade 0.7.22 -> 0.7.23 | ||
479 | - libsoup-2.4: upgrade 2.74.2 -> 2.74.3 | ||
480 | - libsoup: upgrade 3.0.7 -> 3.2.2 | ||
481 | - libtest-fatal-perl: upgrade 0.016 -> 0.017 | ||
482 | - libtest-needs-perl: upgrade 0.002009 -> 0.002010 | ||
483 | - libunistring: upgrade 1.0 -> 1.1 | ||
484 | - liburcu: upgrade 0.13.2 -> 0.14.0 | ||
485 | - liburi-perl: upgrade 5.08 -> 5.17 | ||
486 | - libva: upgrade 2.15.0 -> 2.16.0 | ||
487 | - libva-utils: upgrade 2.15.0 -> 2.17.1 | ||
488 | - libwebp: upgrade 1.2.4 -> 1.3.0 | ||
489 | - libwpe: upgrade 1.12.3 -> 1.14.1 | ||
490 | - libx11: 1.8.1 -> 1.8.4 | ||
491 | - libx11-compose-data: 1.6.8 -> 1.8.4 | ||
492 | - libxau: upgrade 1.0.10 -> 1.0.11 | ||
493 | - libxcomposite: update 0.4.5 -> 0.4.6 | ||
494 | - libxcrypt-compat: upgrade 4.4.30 -> 4.4.33 | ||
495 | - libxcrypt: upgrade 4.4.28 -> 4.4.30 | ||
496 | - libxdamage: update 1.1.5 -> 1.1.6 | ||
497 | - libxdmcp: update 1.1.3 -> 1.1.4 | ||
498 | - libxext: update 1.3.4 -> 1.3.5 | ||
499 | - libxft: update 2.3.4 -> 2.3.6 | ||
500 | - libxft: upgrade 2.3.6 -> 2.3.7 | ||
501 | - libxinerama: update 1.1.4 -> 1.1.5 | ||
502 | - libxkbcommon: upgrade 1.4.1 -> 1.5.0 | ||
503 | - libxkbfile: update 1.1.0 -> 1.1.1 | ||
504 | - libxkbfile: upgrade 1.1.1 -> 1.1.2 | ||
505 | - libxml2: upgrade 2.9.14 -> 2.10.3 | ||
506 | - libxmu: update 1.1.3 -> 1.1.4 | ||
507 | - libxpm: update 3.5.13 -> 3.5.15 | ||
508 | - libxrandr: update 1.5.2 -> 1.5.3 | ||
509 | - libxrender: update 0.9.10 -> 0.9.11 | ||
510 | - libxres: update 1.2.1 -> 1.2.2 | ||
511 | - libxscrnsaver: update 1.2.3 -> 1.2.4 | ||
512 | - libxshmfence: update 1.3 -> 1.3.2 | ||
513 | - libxslt: upgrade 1.1.35 -> 1.1.37 | ||
514 | - libxtst: update 1.2.3 -> 1.2.4 | ||
515 | - libxv: update 1.0.11 -> 1.0.12 | ||
516 | - libxxf86vm: update 1.1.4 -> 1.1.5 | ||
517 | - lighttpd: upgrade 1.4.66 -> 1.4.69 | ||
518 | - linux-firmware: upgrade 20220913 -> 20230210 | ||
519 | - linux-libc-headers: bump to 6.1 | ||
520 | - linux-yocto/5.15: update genericx86* machines to v5.15.78 | ||
521 | - linux-yocto/5.15: update to v5.15.103 | ||
522 | - linux-yocto/6.1: update to v6.1.20 | ||
523 | - linux-yocto-dev: bump to v6.3 | ||
524 | - linux-yocto-rt/5.15: update to -rt59 | ||
525 | - linux-yocto-rt/6.1: update to -rt7 | ||
526 | - llvm: update 14.0.6 -> 15.0.7 | ||
527 | - log4cplus: upgrade 2.0.8 -> 2.1.0 | ||
528 | - logrotate: upgrade 3.20.1 -> 3.21.0 | ||
529 | - lsof: upgrade 4.95.0 -> 4.98.0 | ||
530 | - ltp: upgrade 20220527 -> 20230127 | ||
531 | - lttng-modules: upgrade 2.13.4 -> 2.13.9 | ||
532 | - lttng-tools: update 2.13.8 -> 2.13.9 | ||
533 | - lttng-ust: upgrade 2.13.4 -> 2.13.5 | ||
534 | - makedepend: upgrade 1.0.6 -> 1.0.8 | ||
535 | - make: update 4.3 -> 4.4.1 | ||
536 | - man-db: update 2.10.2 -> 2.11.2 | ||
537 | - man-pages: upgrade 5.13 -> 6.03 | ||
538 | - matchbox-config-gtk: Update to latest SRCREV | ||
539 | - matchbox-desktop-2: Update 2.2 -> 2.3 | ||
540 | - matchbox-panel-2: Update 2.11 -> 2.12 | ||
541 | - matchbox-terminal: Update to latest SRCREV | ||
542 | - matchbox-wm: Update 1.2.2 -> 1.2.3 | ||
543 | - mc: update 4.8.28 -> 4.8.29 | ||
544 | - mesa: update 22.2.0 -> 23.0.0 | ||
545 | - meson: upgrade 0.63.2 -> 1.0.1 | ||
546 | - mmc-utils: upgrade to latest revision | ||
547 | - mobile-broadband-provider-info: upgrade 20220725 -> 20221107 | ||
548 | - mpfr: upgrade 4.1.0 -> 4.2.0 | ||
549 | - mpg123: upgrade 1.30.2 -> 1.31.2 | ||
550 | - msmtp: upgrade 1.8.22 -> 1.8.23 | ||
551 | - mtd-utils: upgrade 2.1.4 -> 2.1.5 | ||
552 | - mtools: upgrade 4.0.40 -> 4.0.42 | ||
553 | - musl-obstack: Update to 1.2.3 | ||
554 | - musl: Upgrade to latest master | ||
555 | - nasm: update 2.15.05 -> 2.16.01 | ||
556 | - ncurses: upgrade 6.3+20220423 -> 6.4 | ||
557 | - netbase: upgrade 6.3 -> 6.4 | ||
558 | - newlib: Upgrade 4.2.0 -> 4.3.0 | ||
559 | - nghttp2: upgrade 1.49.0 -> 1.52.0 | ||
560 | - numactl: upgrade 2.0.15 -> 2.0.16 | ||
561 | - opensbi: Upgrade to 1.2 release | ||
562 | - openssh: upgrade 9.0p1 -> 9.3p1 | ||
563 | - openssl: Upgrade 3.0.5 -> 3.1.0 | ||
564 | - opkg: upgrade to version 0.6.1 | ||
565 | - orc: upgrade 0.4.32 -> 0.4.33 | ||
566 | - ovmf: upgrade edk2-stable202205 -> edk2-stable202211 | ||
567 | - pango: upgrade 1.50.9 -> 1.50.13 | ||
568 | - patchelf: upgrade 0.15.0 -> 0.17.2 | ||
569 | - pciutils: upgrade 3.8.0 -> 3.9.0 | ||
570 | - piglit: upgrade to latest revision | ||
571 | - pinentry: update 1.2.0 -> 1.2.1 | ||
572 | - pixman: upgrade 0.40.0 -> 0.42.2 | ||
573 | - pkgconf: upgrade 1.9.3 -> 1.9.4 | ||
574 | - popt: update 1.18 -> 1.19 | ||
575 | - powertop: upgrade 2.14 -> 2.15 | ||
576 | - procps: update 3.3.17 -> 4.0.3 | ||
577 | - psmisc: upgrade 23.5 -> 23.6 | ||
578 | - puzzles: upgrade to latest revision | ||
579 | - python3-alabaster: upgrade 0.7.12 -> 0.7.13 | ||
580 | - python3-attrs: upgrade 22.1.0 -> 22.2.0 | ||
581 | - python3-babel: upgrade 2.10.3 -> 2.12.1 | ||
582 | - python3-bcrypt: upgrade 3.2.2 -> 4.0.1 | ||
583 | - python3-certifi: upgrade 2022.9.14 -> 2022.12.7 | ||
584 | - python3-chardet: upgrade 5.0.0 -> 5.1.0 | ||
585 | - python3-cryptography: upgrade 38.0.3 -> 39.0.4 | ||
586 | - python3-cryptography-vectors: upgrade 37.0.4 -> 39.0.2 | ||
587 | - python3-cython: upgrade 0.29.32 -> 0.29.33 | ||
588 | - python3-dbusmock: update 0.28.4 -> 0.28.7 | ||
589 | - python3-dbus: upgrade 1.2.18 -> 1.3.2 | ||
590 | - python3-dtschema: upgrade 2022.8.3 -> 2023.1 | ||
591 | - python3-flit-core: upgrade 3.7.1 -> 3.8.0 | ||
592 | - python3-gitdb: upgrade 4.0.9 -> 4.0.10 | ||
593 | - python3-git: upgrade 3.1.27 -> 3.1.31 | ||
594 | - python3-hatch-fancy-pypi-readme: upgrade 22.7.0 -> 22.8.0 | ||
595 | - python3-hatchling: upgrade 1.9.0 -> 1.13.0 | ||
596 | - python3-hatch-vcs: upgrade 0.2.0 -> 0.3.0 | ||
597 | - python3-hypothesis: upgrade 6.54.5 -> 6.68.2 | ||
598 | - python3-importlib-metadata: upgrade 4.12.0 -> 6.0.0 | ||
599 | - python3-iniconfig: upgrade 1.1.1 -> 2.0.0 | ||
600 | - python3-installer: update 0.5.1 -> 0.6.0 | ||
601 | - python3-iso8601: upgrade 1.0.2 -> 1.1.0 | ||
602 | - python3-jsonschema: upgrade 4.9.1 -> 4.17.3 | ||
603 | - python3-lxml: upgrade 4.9.1 -> 4.9.2 | ||
604 | - python3-mako: upgrade 1.2.2 -> 1.2.4 | ||
605 | - python3-markupsafe: upgrade 2.1.1 -> 2.1.2 | ||
606 | - python3-more-itertools: upgrade 8.14.0 -> 9.1.0 | ||
607 | - python3-numpy: upgrade 1.23.3 -> 1.24.2 | ||
608 | - python3-packaging: upgrade to 23.0 | ||
609 | - python3-pathspec: upgrade 0.10.1 -> 0.11.0 | ||
610 | - python3-pbr: upgrade 5.10.0 -> 5.11.1 | ||
611 | - python3-pip: upgrade 22.2.2 -> 23.0.1 | ||
612 | - python3-poetry-core: upgrade 1.0.8 -> 1.5.2 | ||
613 | - python3-psutil: upgrade 5.9.2 -> 5.9.4 | ||
614 | - python3-pycairo: upgrade 1.21.0 -> 1.23.0 | ||
615 | - python3-pycryptodome: upgrade 3.15.0 -> 3.17 | ||
616 | - python3-pycryptodomex: upgrade 3.15.0 -> 3.17 | ||
617 | - python3-pygments: upgrade 2.13.0 -> 2.14.0 | ||
618 | - python3-pyopenssl: upgrade 22.0.0 -> 23.0.0 | ||
619 | - python3-pyrsistent: upgrade 0.18.1 -> 0.19.3 | ||
620 | - python3-pytest-subtests: upgrade 0.8.0 -> 0.10.0 | ||
621 | - python3-pytest: upgrade 7.1.3 -> 7.2.2 | ||
622 | - python3-pytz: upgrade 2022.2.1 -> 2022.7.1 | ||
623 | - python3-requests: upgrade 2.28.1 -> 2.28.2 | ||
624 | - python3-scons: upgrade 4.4.0 -> 4.5.2 | ||
625 | - python3-setuptools-rust: upgrade 1.5.1 -> 1.5.2 | ||
626 | - python3-setuptools-scm: upgrade 7.0.5 -> 7.1.0 | ||
627 | - python3-setuptools: upgrade 65.0.2 -> 67.6.0 | ||
628 | - python3-sphinxcontrib-applehelp: update 1.0.2 -> 1.0.4 | ||
629 | - python3-sphinxcontrib-htmlhelp: 2.0.0 -> 2.0.1 | ||
630 | - python3-sphinx-rtd-theme: upgrade 1.0.0 -> 1.2.0 | ||
631 | - python3-sphinx: upgrade 5.1.1 -> 6.1.3 | ||
632 | - python3-subunit: upgrade 1.4.0 -> 1.4.2 | ||
633 | - python3-testtools: upgrade 2.5.0 -> 2.6.0 | ||
634 | - python3-typing-extensions: upgrade 4.3.0 -> 4.5.0 | ||
635 | - python3: update 3.10.6 -> 3.11.2 | ||
636 | - python3-urllib3: upgrade 1.26.12 -> 1.26.15 | ||
637 | - python3-wcwidth: upgrade 0.2.5 -> 0.2.6 | ||
638 | - python3-wheel: upgrade 0.37.1 -> 0.40.0 | ||
639 | - python3-zipp: upgrade 3.8.1 -> 3.15.0 | ||
640 | - qemu: update 7.1.0 -> 7.2.0 | ||
641 | - quota: update 4.06 -> 4.09 | ||
642 | - readline: update 8.1.2 -> 8.2 | ||
643 | - repo: upgrade 2.29.2 -> 2.32 | ||
644 | - rgb: update 1.0.6 -> 1.1.0 | ||
645 | - rng-tools: upgrade 6.15 -> 6.16 | ||
646 | - rsync: update 3.2.5 -> 3.2.7 | ||
647 | - rt-tests: update 2.4 -> 2.5 | ||
648 | - ruby: update 3.1.2 -> 3.2.1 | ||
649 | - rust: update 1.63.0 -> 1.68.1 | ||
650 | - rxvt-unicode: upgrade 9.30 -> 9.31 | ||
651 | - sed: update 4.8 -> 4.9 | ||
652 | - shaderc: upgrade 2022.2 -> 2023.2 | ||
653 | - shadow: update 4.12.1 -> 4.13 | ||
654 | - socat: upgrade 1.7.4.3 -> 1.7.4.4 | ||
655 | - spirv-headers: upgrade 1.3.236.0 -> 1.3.239.0 | ||
656 | - spirv-tools: upgrade 1.3.236.0 -> 1.3.239.0 | ||
657 | - sqlite3: upgrade 3.39.3 -> 3.41.0 | ||
658 | - strace: upgrade 5.19 -> 6.2 | ||
659 | - stress-ng: update 0.14.03 -> 0.15.06 | ||
660 | - sudo: upgrade 1.9.11p3 -> 1.9.13p3 | ||
661 | - swig: update 4.0.2 -> 4.1.1 | ||
662 | - sysstat: upgrade 12.6.0 -> 12.6.2 | ||
663 | - systemd: update 251.4 -> 253.1 | ||
664 | - systemtap: upgrade 4.7 -> 4.8 | ||
665 | - taglib: upgrade 1.12 -> 1.13 | ||
666 | - tcf-agent: Update to current version | ||
667 | - tcl: update 8.6.11 -> 8.6.13 | ||
668 | - texinfo: update 6.8 -> 7.0.2 | ||
669 | - tiff: update 4.4.0 -> 4.5.0 | ||
670 | - tzdata: update 2022d -> 2023c | ||
671 | - u-boot: upgrade 2022.07 -> 2023.01 | ||
672 | - unfs: update 0.9.22 -> 0.10.0 | ||
673 | - usbutils: upgrade 014 -> 015 | ||
674 | - util-macros: upgrade 1.19.3 -> 1.20.0 | ||
675 | - vala: upgrade 0.56.3 -> 0.56.4 | ||
676 | - valgrind: update to 3.20.0 | ||
677 | - vim: Upgrade 9.0.0598 -> 9.0.1429 | ||
678 | - virglrenderer: upgrade 0.10.3 -> 0.10.4 | ||
679 | - vte: update 0.68.0 -> 0.72.0 | ||
680 | - vulkan-headers: upgrade 1.3.236.0 -> 1.3.239.0 | ||
681 | - vulkan-loader: upgrade 1.3.236.0 -> 1.3.239.0 | ||
682 | - vulkan-samples: update to latest revision | ||
683 | - vulkan-tools: upgrade 1.3.236.0 -> 1.3.239.0 | ||
684 | - vulkan: update 1.3.216.0 -> 1.3.236.0 | ||
685 | - wayland-protocols: upgrade 1.26 -> 1.31 | ||
686 | - wayland-utils: update 1.0.0 -> 1.1.0 | ||
687 | - webkitgtk: update 2.36.7 -> 2.38.5 | ||
688 | - weston: update 10.0.2 -> 11.0.1 | ||
689 | - wireless-regdb: upgrade 2022.08.12 -> 2023.02.13 | ||
690 | - wpebackend-fdo: upgrade 1.12.1 -> 1.14.0 | ||
691 | - xcb-util: update 0.4.0 -> 0.4.1 | ||
692 | - xcb-util-keysyms: 0.4.0 -> 0.4.1 | ||
693 | - xcb-util-renderutil: 0.3.9 -> 0.3.10 | ||
694 | - xcb-util-wm: 0.4.1 -> 0.4.2 | ||
695 | - xcb-util-image: 0.4.0 -> 0.4.1 | ||
696 | - xf86-input-mouse: update 1.9.3 -> 1.9.4 | ||
697 | - xf86-input-vmmouse: update 13.1.0 -> 13.2.0 | ||
698 | - xf86-video-vesa: update 2.5.0 -> 2.6.0 | ||
699 | - xf86-video-vmware: update 13.3.0 -> 13.4.0 | ||
700 | - xhost: update 1.0.8 -> 1.0.9 | ||
701 | - xinit: update 1.4.1 -> 1.4.2 | ||
702 | - xkbcomp: update 1.4.5 -> 1.4.6 | ||
703 | - xkeyboard-config: upgrade 2.36 -> 2.38 | ||
704 | - xprop: update 1.2.5 -> 1.2.6 | ||
705 | - xrandr: upgrade 1.5.1 -> 1.5.2 | ||
706 | - xserver-xorg: upgrade 21.1.4 -> 21.1.7 | ||
707 | - xset: update 1.2.4 -> 1.2.5 | ||
708 | - xvinfo: update 1.1.4 -> 1.1.5 | ||
709 | - xwayland: upgrade 22.1.3 -> 22.1.8 | ||
710 | - xz: upgrade 5.2.6 -> 5.4.2 | ||
711 | - zlib: upgrade 1.2.12 -> 1.2.13 | ||
712 | - zstd: upgrade 1.5.2 -> 1.5.4 | ||
713 | |||
714 | |||
715 | |||
716 | |||
717 | Contributors to 4.2 | ||
718 | ~~~~~~~~~~~~~~~~~~~ | ||
719 | |||
720 | Thanks to the following people who contributed to this release: | ||
721 | |||
722 | - Adrian Freihofer | ||
723 | - Ahmad Fatoum | ||
724 | - Alejandro Hernandez Samaniego | ||
725 | - Alexander Kanavin | ||
726 | - Alexandre Belloni | ||
727 | - Alexey Smirnov | ||
728 | - Alexis Lothoré | ||
729 | - Alex Kiernan | ||
730 | - Alex Stewart | ||
731 | - Andrej Valek | ||
732 | - Andrew Geissler | ||
733 | - Anton Antonov | ||
734 | - Antonin Godard | ||
735 | - Archana Polampalli | ||
736 | - Armin Kuster | ||
737 | - Arnout Vandecappelle | ||
738 | - Arturo Buzarra | ||
739 | - Atanas Bunchev | ||
740 | - Benjamin Szőke | ||
741 | - Benoît Mauduit | ||
742 | - Bernhard Rosenkränzer | ||
743 | - Bruce Ashfield | ||
744 | - Caner Altinbasak | ||
745 | - Carlos Alberto Lopez Perez | ||
746 | - Changhyeok Bae | ||
747 | - Changqing Li | ||
748 | - Charlie Johnston | ||
749 | - Chase Qi | ||
750 | - Chee Yang Lee | ||
751 | - Chen Qi | ||
752 | - Chris Elledge | ||
753 | - Christian Eggers | ||
754 | - Christoph Lauer | ||
755 | - Chuck Wolber | ||
756 | - Ciaran Courtney | ||
757 | - Claus Stovgaard | ||
758 | - Clément Péron | ||
759 | - Daniel Ammann | ||
760 | - David Bagonyi | ||
761 | - Denys Dmytriyenko | ||
762 | - Denys Zagorui | ||
763 | - Diego Sueiro | ||
764 | - Dmitry Baryshkov | ||
765 | - Ed Tanous | ||
766 | - Enguerrand de Ribaucourt | ||
767 | - Enrico Jörns | ||
768 | - Enrico Scholz | ||
769 | - Etienne Cordonnier | ||
770 | - Fabio Estevam | ||
771 | - Fabre Sébastien | ||
772 | - Fawzi KHABER | ||
773 | - Federico Pellegrin | ||
774 | - Frank de Brabander | ||
775 | - Frederic Martinsons | ||
776 | - Geoffrey GIRY | ||
777 | - George Kelly | ||
778 | - Harald Seiler | ||
779 | - He Zhe | ||
780 | - Hitendra Prajapati | ||
781 | - Jagadeesh Krishnanjanappa | ||
782 | - James Raphael Tiovalen | ||
783 | - Jan Kircher | ||
784 | - Jan Luebbe | ||
785 | - Jan-Simon Moeller | ||
786 | - Javier Tia | ||
787 | - Jeremy Puhlman | ||
788 | - Jermain Horsman | ||
789 | - Jialing Zhang | ||
790 | - Joel Stanley | ||
791 | - Joe Slater | ||
792 | - Johan Korsnes | ||
793 | - Jon Mason | ||
794 | - Jordan Crouse | ||
795 | - Jose Quaresma | ||
796 | - Joshua Watt | ||
797 | - Justin Bronder | ||
798 | - Kai Kang | ||
799 | - Kasper Revsbech | ||
800 | - Keiya Nobuta | ||
801 | - Kenfe-Mickael Laventure | ||
802 | - Kevin Hao | ||
803 | - Khem Raj | ||
804 | - Konrad Weihmann | ||
805 | - Lei Maohui | ||
806 | - Leon Anavi | ||
807 | - Liam Beguin | ||
808 | - Louis Rannou | ||
809 | - Luca Boccassi | ||
810 | - Luca Ceresoli | ||
811 | - Luis Martins | ||
812 | - Maanya Goenka | ||
813 | - Marek Vasut | ||
814 | - Mark Asselstine | ||
815 | - Mark Hatle | ||
816 | - Markus Volk | ||
817 | - Marta Rybczynska | ||
818 | - Martin Jansa | ||
819 | - Martin Larsson | ||
820 | - Mateusz Marciniec | ||
821 | - Mathieu Dubois-Briand | ||
822 | - Mauro Queiros | ||
823 | - Maxim Uvarov | ||
824 | - Michael Halstead | ||
825 | - Michael Opdenacker | ||
826 | - Mike Crowe | ||
827 | - Mikko Rapeli | ||
828 | - Ming Liu | ||
829 | - Mingli Yu | ||
830 | - Narpat Mali | ||
831 | - Nathan Rossi | ||
832 | - Niko Mauno | ||
833 | - Ola x Nilsson | ||
834 | - Oliver Lang | ||
835 | - Ovidiu Panait | ||
836 | - Pablo Saavedra | ||
837 | - Patrick Williams | ||
838 | - Paul Eggleton | ||
839 | - Paulo Neves | ||
840 | - Pavel Zhukov | ||
841 | - Pawel Zalewski | ||
842 | - Pedro Baptista | ||
843 | - Peter Bergin | ||
844 | - Peter Kjellerstedt | ||
845 | - Peter Marko | ||
846 | - Petr Kubizňák | ||
847 | - Petr Vorel | ||
848 | - pgowda | ||
849 | - Piotr Łobacz | ||
850 | - Quentin Schulz | ||
851 | - Randy MacLeod | ||
852 | - Ranjitsinh Rathod | ||
853 | - Ravineet Singh | ||
854 | - Ravula Adhitya Siddartha | ||
855 | - Richard Elberger | ||
856 | - Richard Leitner | ||
857 | - Richard Purdie | ||
858 | - Robert Andersson | ||
859 | - Robert Joslyn | ||
860 | - Robert Yang | ||
861 | - Romuald JEANNE | ||
862 | - Ross Burton | ||
863 | - Ryan Eatmon | ||
864 | - Sakib Sajal | ||
865 | - Sandeep Gundlupet Raju | ||
866 | - Saul Wold | ||
867 | - Sean Anderson | ||
868 | - Sergei Zhmylev | ||
869 | - Siddharth Doshi | ||
870 | - Soumya | ||
871 | - Sudip Mukherjee | ||
872 | - Sundeep KOKKONDA | ||
873 | - Teoh Jay Shen | ||
874 | - Thomas De Schampheleire | ||
875 | - Thomas Perrot | ||
876 | - Thomas Roos | ||
877 | - Tim Orling | ||
878 | - Tobias Hagelborn | ||
879 | - Tom Hochstein | ||
880 | - Trevor Woerner | ||
881 | - Ulrich Ölmann | ||
882 | - Vincent Davis Jr | ||
883 | - Vivek Kumbhar | ||
884 | - Vyacheslav Yurkov | ||
885 | - Wang Mingyu | ||
886 | - Wentao Zhang | ||
887 | - Xiangyu Chen | ||
888 | - Xiaotian Wu | ||
889 | - Yan Xinkuan | ||
890 | - Yash Shinde | ||
891 | - Yi Zhao | ||
892 | - Yoann Congal | ||
893 | - Yureka Lilian | ||
894 | - Zang Ruochen | ||
895 | - Zheng Qiu | ||
896 | - Zheng Ruoqin | ||
897 | - Zoltan Boszormenyi | ||
898 | - 张忠山 | ||
899 | |||
900 | |||