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